about summary refs log tree commit diff
path: root/tests/ui/coherence/impl[t]-foreign[fundamental[t]]-for-local.rs
blob: d368b870f25a1299df229b6fc208b36776d3f8a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//@ compile-flags:--crate-name=test
//@ aux-build:coherence_lib.rs
//@ check-pass

extern crate coherence_lib as lib;
use lib::*;
use std::rc::Rc;

struct Local;

impl<T> Remote1<Box<T>> for Local {}

impl<'a, T> Remote1<&'a T> for Local {}

fn main() {}